home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FLI106C.ZIP;1 / MASKINT.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-12  |  625 b   |  35 lines

  1. //
  2. // The Fusion Library Interface for DOS
  3. // Version 1.06c
  4. // Copyright (C) 1990, 1991, 1992
  5. // Software Dimensions
  6. //
  7. // BlazeClass
  8. //
  9.  
  10. #include "fli.h"
  11.  
  12. #ifdef __BCPLUSPLUS__
  13. #pragma hdrstop
  14. #endif
  15.  
  16. #include <stdlib.h>
  17.  
  18. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  19. //
  20. // Mask(char *,int &)
  21. //
  22. // Handles output of integer masks
  23. //
  24. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  25.  
  26. char * BlazeClass::Mask(char *Mask,int &Value)
  27. {
  28.   char Integer[30];
  29.  
  30.   NumberMask::MaskShow(Mask,itoa(Value,Integer,10),*this);
  31.  
  32.   return 0;
  33. }
  34.  
  35.